home *** CD-ROM | disk | FTP | other *** search
- package Local.Game.World
- {
- import Local.Game.Thing.CThingMain;
- import Local.Game.World.Map.Cell.CCell;
- import flash.events.Event;
-
- public class CEvent extends Event
- {
-
-
- public var mThing:CThingMain;
-
- public var mCell:CCell;
-
- public function CEvent(param1:String, param2:* = null, param3:* = null)
- {
- if(true)
- {
- super(param1);
- if(true)
- {
- mThing = param2;
- }
- mCell = param3;
- }
- }
- }
- }
-